/* Formulario de encuesta */
form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
}

/* Inputs y selects */
input, select {
    width: 90%;
    padding: 8px;
    margin: 6px 0 12px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Botón */
button {
    background-color: #7f1e20;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5c1415;
}

/* Resultado */
#mensajeResultado {
    font-size: 16px;
    margin-top: 10px;
}

/* Arreglar color de fondo del body */
body {
    background-color: #f0f0f0; /* corregido el error de sintaxis */
}
